home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / mac / files / ID99MENU.DIR / 00020.ls < prev    next >
Encoding:
Text File  |  1999-04-29  |  250 b   |  13 lines

  1. global stagedone, oldticks, tickrate
  2.  
  3. on exitFrame
  4.   t = the ticks
  5.   tickrate = min(40, max(2, (((t - oldticks) * 3) + tickrate) / 2))
  6.   oldticks = t
  7.   stagedone = 1
  8.   sendAllSprites(#donestage)
  9.   if not stagedone then
  10.     go(the frame)
  11.   end if
  12. end
  13.